home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / PROGNG_C / CTASK.LZH / TSKWPIP.C < prev   
C/C++ Source or Header  |  1988-03-01  |  5KB  |  234 lines

  1. /*
  2.    TSKWPIP.C - CTask - Word Pipe handling routines.
  3.  
  4.    Public Domain Software written by
  5.       Thomas Wagner
  6.       Patschkauer Weg 31
  7.       D-1000 Berlin 33
  8.       West Germany
  9. */
  10.  
  11. #include <stdio.h>
  12.  
  13. #include "tsk.h"
  14. #include "tsklocal.h"
  15.  
  16. /*
  17.    tsk_getwpipe - get a word from a pipe. For internal use only.
  18.                   Critical section assumed entered.
  19. */
  20.  
  21. local word near tsk_getwpipe (wpipeptr pip)
  22. {
  23.    word c;
  24.  
  25.    c = pip->wcontents [pip->outptr++];
  26.    if (pip->outptr >= pip->bufsize)
  27.       pip->outptr = 0;
  28.    pip->filled--;
  29.    return c;
  30. }
  31.  
  32.  
  33. /*
  34.    tsk_putwpipe - put a word to a pipe. For internal use only.
  35.                   Critical section assumed entered.
  36. */
  37.  
  38. local void near tsk_putwpipe (wpipeptr pip, word c)
  39. {
  40.    pip->wcontents [pip->inptr++] = c;
  41.    if (pip->inptr >= pip->bufsize)
  42.       pip->inptr = 0;
  43.    pip->filled++;
  44. }
  45.  
  46.  
  47. /* -------------------------------------------------------------------- */
  48.  
  49.  
  50. /*
  51.    create_wpipe - initialises wpipe.
  52. */
  53.  
  54. void far create_wpipe (wpipeptr pip, farptr buf, word bufsize)
  55. {
  56.    pip->wait_read = pip->wait_write = pip->wait_clear = NULL;
  57.    pip->outptr = pip->inptr = pip->filled = 0;
  58.    pip->bufsize = bufsize >> 1;
  59.    pip->wcontents = (wordptr)buf;
  60. }
  61.  
  62.  
  63. /*
  64.    delete_wpipe - kills all processes waiting for reading from or writing
  65.                   to the wpipe.
  66. */
  67.  
  68. void far delete_wpipe (wpipeptr pip)
  69. {
  70.    CRITICAL;
  71.  
  72.    C_ENTER;
  73.    tsk_kill_queue (&(pip->wait_read));
  74.    tsk_kill_queue (&(pip->wait_write));
  75.    tsk_kill_queue (&(pip->wait_clear));
  76.    pip->outptr = pip->inptr = pip->filled = 0;
  77.    C_LEAVE;
  78. }
  79.  
  80.  
  81. /*
  82.    read_wpipe - Wait until a word is written to the wpipe. If there 
  83.                 is a word in the wpipe on entry, it is assigned to 
  84.                 the caller, and the task continues to run. If there are
  85.                 tasks waiting to write, the first task is made eligible,
  86.                 and the word is inserted into the wpipe.
  87. */
  88.  
  89. word far read_wpipe (wpipeptr pip, dword timeout)
  90. {
  91.    tcbptr curr;
  92.    word res;
  93.    CRITICAL;
  94.  
  95.    C_ENTER;
  96.  
  97.    if (pip->filled)
  98.       {
  99.       res = tsk_getwpipe (pip);
  100.  
  101.       if ((curr = pip->wait_write) != NULL)
  102.          {
  103.          tsk_putwpipe (pip, curr->retsize);
  104.          pip->wait_write = tsk_runable (curr);
  105.          curr->retptr = NULL;
  106.          }
  107.       else if (!pip->filled)
  108.          while (pip->wait_clear != NULL)
  109.             pip->wait_clear = tsk_runable (pip->wait_clear);
  110.  
  111.       C_LEAVE;
  112.       return res;
  113.       }
  114.  
  115.    tsk_wait (&pip->wait_read, timeout);
  116.    return (word)tsk_current->retptr;
  117. }
  118.  
  119.  
  120. /*
  121.    c_read_wpipe - If there is a word in the wpipe on entry,
  122.                   read_wpipe is called, otherwise an error status is returned.
  123. */
  124.  
  125. word far c_read_wpipe (wpipeptr pip)
  126. {
  127.    CRITICAL, res;
  128.  
  129.    C_ENTER;
  130.    res = (pip->filled) ? read_wpipe (pip, 0L) : (word)-1;
  131.    C_LEAVE;
  132.    return res;
  133. }
  134.  
  135.  
  136.  
  137. /*
  138.    write_wpipe - Wait until space for the word to be written to the 
  139.                  wpipe is available. If there is enough space in the wpipe 
  140.                  on entry, the word is inserted into the wpipe, and
  141.                  the task continues to run. If there are tasks waiting 
  142.                  to read, the first task is made eligible, and the word
  143.                  is passed to the waiting task.
  144. */
  145.  
  146. int far write_wpipe (wpipeptr pip, word ch, dword timeout)
  147. {
  148.    tcbptr curr;
  149.    CRITICAL;
  150.  
  151.    C_ENTER;
  152.  
  153.    if (pip->filled < pip->bufsize)
  154.       {
  155.       if ((curr = pip->wait_read) != NULL)
  156.          {
  157.          pip->wait_read = tsk_runable (curr);
  158.          curr->retptr = (farptr)ch;
  159.          C_LEAVE;
  160.          return 0;
  161.          }
  162.  
  163.       tsk_putwpipe (pip, ch);
  164.       C_LEAVE;
  165.       return 0;
  166.       }
  167.  
  168.    tsk_current->retsize = ch;
  169.    tsk_wait (&pip->wait_write, timeout);
  170.    return (int)tsk_current->retptr;
  171. }
  172.  
  173.  
  174. /*
  175.    c_write_wpipe - If there is space for the word in the wpipe on entry,
  176.                    write_wpipe is called, otherwise an error status is returned.
  177. */
  178.  
  179. int far c_write_wpipe (wpipeptr pip, word ch)
  180. {
  181.    int res;
  182.    CRITICAL;
  183.  
  184.    C_ENTER;
  185.    res = (pip->filled < pip->bufsize) ? write_wpipe (pip, ch, 0L) : -1;
  186.    C_LEAVE;
  187.    return res;
  188. }
  189.  
  190.  
  191. /*
  192.    wait_wpipe_empty - Wait until the pipe is empty. If the pipe is
  193.                       empty on entry, the task continues to run.
  194. */
  195.  
  196. int far wait_wpipe_empty (wpipeptr pip, dword timeout)
  197. {
  198.    CRITICAL;
  199.  
  200.    C_ENTER;
  201.    if (!pip->filled)
  202.       {
  203.       C_LEAVE;
  204.       return 0;
  205.       }
  206.  
  207.    tsk_current->retptr = NULL;
  208.    tsk_wait (&pip->wait_clear, timeout);
  209.    return (int)tsk_current->retptr;
  210. }
  211.  
  212.  
  213. /*
  214.    check_wpipe - returns -1 if there are no words in the wpipe, else
  215.                  the first available word.
  216. */
  217.  
  218. word far check_wpipe (wpipeptr pip)
  219. {
  220.    return (pip->filled) ? pip->wcontents [pip->outptr] : (word)-1;
  221. }
  222.  
  223.  
  224. /*
  225.    wpipe_free - returns the number of free words in the pipe.
  226. */
  227.  
  228. word far wpipe_free (wpipeptr pip)
  229. {
  230.    return pip->bufsize - pip->filled;
  231. }
  232.  
  233.  
  234.